home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 April / EnigmA AMIGA RUN 17 (1997)(G.R. Edizioni)(IT)[!][issue 1997-04][EAR-CD].iso / EARCD / comm / bbs / Hydra11s.lha / HBBS / Source / Common / ANSI_Codes.h < prev    next >
Text File  |  1996-06-25  |  756b  |  24 lines

  1. // some ansi escape sequences
  2.  
  3. #define ANSI_CLS       "\014\033[1;1H\033[2J"
  4. #define ANSI_RESET     "\033[0;37m"
  5. #define ANSI_BOLD      "\033[1m"
  6. #define ANSI_ITALIC    "\033[3m"
  7. #define ANSI_UNDERLINE "\033[4m"
  8. #define ANSI_FG_BLACK  "\033[30m"
  9. #define ANSI_FG_RED    "\033[31m"
  10. #define ANSI_FG_GREEN  "\033[32m"
  11. #define ANSI_FG_YELLOW "\033[33m"
  12. #define ANSI_FG_BLUE   "\033[34m"
  13. #define ANSI_FG_PURPLE "\033[35m"
  14. #define ANSI_FG_CYAN   "\033[36m"
  15. #define ANSI_FG_WHITE  "\033[37m"
  16. #define ANSI_BG_BLACK  "\033[40m"
  17. #define ANSI_BG_RED    "\033[41m"
  18. #define ANSI_BG_GREEN  "\033[42m"
  19. #define ANSI_BG_YELLOW "\033[43m"
  20. #define ANSI_BG_BLUE   "\033[44m"
  21. #define ANSI_BG_PURPLE "\033[45m"
  22. #define ANSI_BG_CYAN   "\033[46m"
  23. #define ANSI_BG_WHITE  "\033[47m"
  24.